home *** CD-ROM | disk | FTP | other *** search
-
- % -----------------------------------------------------------------------------
- % Timer demonstration *TERMINATE PRESCRIPTION*
- % -----------------------------------------------------------------------------
- %
- % Version : 1.00
- % Filename : TIMER.TSL
- % Company : SerWiz Comm
- % Programmer : The Serial Wizard
- % Module created : 06 Aug 1995
- % Latest revision : 06 Aug 1995
- % Language/version : Terminate Prescription 1.00
- % Remarks : Resets, show elapsed, and check if timer is expired
- %
- % -----------------------------------------------------------------------------
-
- ClearScreen
- WriteAStr 1,1,3,"Timer demonstration, counting to 5 seconds"
- SetAttr 11
-
- ResetTimer 1,5
- Repeat
- GotoXY 50,1
- Print TimeElapsed(1)
- Until TimerExpired(1)=1
-
- Set Key=GetKey
-
-